##############################################################
##  :   
## : MY-94			
## :   " "  
##
## : 
##############################################################
#
#-----[  ]------------------------------------------
#
viewforum.php
#
#-----[  ]------------------------------------------
#
'POST_IMG'            => ($forum_data['forum_status'] == FORUM_LOCKED) ? $images['post_locked'] : $images['post_new'],
#
#-----[   ]------------------------------------------
#
'RELEASE_IMG'         => ($forum_data['forum_status'] == FORUM_LOCKED) ? $images['post_locked'] : $images['release_new'],
#
#-----[  ]------------------------------------------
#
'U_POST_NEW_TOPIC'    => $post_new_topic_url,
#
#-----[   ]------------------------------------------
#
'RELEASE_NEW_TOPIC'    => $release_new_topic_url,
#
#-----[  ]------------------------------------------
#
$post_new_topic_url = "posting.php?mode=newtopic&amp;f=$forum_id";
$post_new_topic_url .= ($forum_data['topic_tpl_id']) ? '&tpl=1' : '';
#
#-----[  ]------------------------------------------
#
$post_new_topic_url = "posting.php?mode=newtopic&amp;f=$forum_id";
$release_new_topic_url = "posting.php?mode=newtopic&amp;f=$forum_id";
$release_new_topic_url .= ($forum_data['topic_tpl_id']) ? '&tpl=1' : '';
#
#-----[  ]------------------------------------------
#
/templates/default/viewforum.tpl
#
#-----[  ]------------------------------------------:
#
<td><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" alt="{T_POST_NEW_TOPIC}" /></a></td>
#
#-----[   ]------------------------------------------
#
<td><a href="{RELEASE_NEW_TOPIC}"><img src="{RELEASE_IMG}" alt="{T_POST_NEW_TOPIC}" /></a></td>
#
#-----[ ]------------------------------------------
#
/templates/default/tpl_config.php
#
#-----[  ]------------------------------------------
#
// posting_icons
$images['post_new']            = $_lang .'post.gif';
#
#-----[   ]------------------------------------------
#
$images['release_new']         = $_lang .'release.gif';

# 
#-----[ /   ]------------------------------------------ 
# 
# EoM